home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- AutoRedraw = -1 'True
- Caption = "Form Icon Demonstration"
- ClientHeight = 1605
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 4695
- Height = 2010
- Left = 1035
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 1605
- ScaleWidth = 4695
- Top = 1140
- Width = 4815
- Begin PictureBox Picture1
- AutoSize = -1 'True
- Height = 510
- Left = 240
- Picture = MINICON.FRX:0000
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 0
- Top = 600
- Width = 510
- End
- Begin PictureBox Picture2
- AutoSize = -1 'True
- Height = 510
- Left = 1200
- Picture = MINICON.FRX:0302
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 1
- Top = 600
- Width = 510
- End
- Begin PictureBox Picture3
- AutoSize = -1 'True
- Height = 510
- Left = 2040
- Picture = MINICON.FRX:0604
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 2
- Top = 600
- Width = 510
- End
- Begin Timer Timer1
- Interval = 1000
- Left = 3360
- Top = 600
- End
- Option Explicit
- Dim num As Integer
- Sub Form_Load ()
- num = 1
- End Sub
- Sub Timer1_Timer ()
- Select Case num
- Case 1
- form1.Icon = picture1.Picture
- Case 2
- form1.Icon = picture2.Picture
- Case 3
- form1.Icon = picture3.Picture
- End Select
- num = num + 1
- If num > 3 Then num = 1
- End Sub
-